home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1997 May / PC Plus Super CD Issue 127 (May 1997).iso / delphi1 / lessons.exe / lesson4 / TAPECALC / CALC4.DFM / CALC4.txt
Encoding:
Text File  |  1996-02-27  |  3.7 KB  |  212 lines

  1. object CalcForm: TCalcForm
  2.   Left = 234
  3.   Top = 93
  4.   Width = 542
  5.   Height = 347
  6.   Caption = 'PC Plus Tape Calculator'
  7.   Font.Color = clWindowText
  8.   Font.Height = -13
  9.   Font.Name = 'System'
  10.   Font.Style = []
  11.   Menu = MainMenu1
  12.   PixelsPerInch = 96
  13.   OnActivate = FormActivate
  14.   OnClose = FormClose
  15.   OnCreate = FormCreate
  16.   OnKeyDown = FormKeyDown
  17.   OnKeyPress = FormKeyPress
  18.   OnKeyUp = FormKeyUp
  19.   TextHeight = 16
  20.   object DisplayEd: TEdit
  21.     Left = 219
  22.     Top = 8
  23.     Width = 198
  24.     Height = 25
  25.     ReadOnly = True
  26.     TabOrder = 0
  27.   end
  28.   object Btn8: TButton
  29.     Left = 8
  30.     Top = 9
  31.     Width = 60
  32.     Height = 33
  33.     Caption = '8'
  34.     TabOrder = 1
  35.     OnClick = Btn8Click
  36.   end
  37.   object Btn6: TButton
  38.     Left = 8
  39.     Top = 49
  40.     Width = 60
  41.     Height = 33
  42.     Caption = '6'
  43.     TabOrder = 2
  44.     OnClick = Btn6Click
  45.   end
  46.   object Btn4: TButton
  47.     Left = 8
  48.     Top = 89
  49.     Width = 60
  50.     Height = 33
  51.     Caption = '4'
  52.     TabOrder = 3
  53.     OnClick = Btn4Click
  54.   end
  55.   object Btn2: TButton
  56.     Left = 8
  57.     Top = 129
  58.     Width = 60
  59.     Height = 33
  60.     Caption = '2'
  61.     TabOrder = 4
  62.     OnClick = Btn2Click
  63.   end
  64.   object Btn0: TButton
  65.     Left = 8
  66.     Top = 169
  67.     Width = 60
  68.     Height = 33
  69.     Caption = '0'
  70.     TabOrder = 5
  71.     OnClick = Btn0Click
  72.   end
  73.   object Btn9: TButton
  74.     Left = 80
  75.     Top = 9
  76.     Width = 60
  77.     Height = 33
  78.     Caption = '9'
  79.     TabOrder = 6
  80.     OnClick = Btn9Click
  81.   end
  82.   object Btn7: TButton
  83.     Left = 80
  84.     Top = 49
  85.     Width = 60
  86.     Height = 33
  87.     Caption = '7'
  88.     TabOrder = 7
  89.     OnClick = Btn7Click
  90.   end
  91.   object Btn5: TButton
  92.     Left = 80
  93.     Top = 89
  94.     Width = 60
  95.     Height = 33
  96.     Caption = '5'
  97.     TabOrder = 8
  98.     OnClick = Btn5Click
  99.   end
  100.   object Btn3: TButton
  101.     Left = 80
  102.     Top = 129
  103.     Width = 60
  104.     Height = 33
  105.     Caption = '3'
  106.     TabOrder = 9
  107.     OnClick = Btn3Click
  108.   end
  109.   object Btn1: TButton
  110.     Left = 80
  111.     Top = 169
  112.     Width = 60
  113.     Height = 33
  114.     Caption = '1'
  115.     TabOrder = 10
  116.     OnClick = Btn1Click
  117.   end
  118.   object BtnEquals: TButton
  119.     Left = 80
  120.     Top = 208
  121.     Width = 129
  122.     Height = 33
  123.     Caption = '='
  124.     Font.Color = clRed
  125.     Font.Height = -19
  126.     Font.Name = 'Terminal'
  127.     Font.Style = [fsBold]
  128.     ParentFont = False
  129.     ParentShowHint = False
  130.     ShowHint = False
  131.     TabOrder = 11
  132.     OnClick = BtnEqualsClick
  133.   end
  134.   object BtnDiv: TButton
  135.     Left = 152
  136.     Top = 8
  137.     Width = 57
  138.     Height = 33
  139.     Caption = '/'
  140.     TabOrder = 12
  141.     OnClick = BtnDivClick
  142.   end
  143.   object BtnMult: TButton
  144.     Left = 152
  145.     Top = 48
  146.     Width = 57
  147.     Height = 33
  148.     Caption = '*'
  149.     TabOrder = 13
  150.     OnClick = BtnMultClick
  151.   end
  152.   object BtnMinus: TButton
  153.     Left = 152
  154.     Top = 88
  155.     Width = 57
  156.     Height = 33
  157.     Caption = '-'
  158.     TabOrder = 14
  159.     OnClick = BtnMinusClick
  160.   end
  161.   object BtnPlus: TButton
  162.     Left = 152
  163.     Top = 128
  164.     Width = 57
  165.     Height = 33
  166.     Caption = '+'
  167.     TabOrder = 15
  168.     OnClick = BtnPlusClick
  169.   end
  170.   object BtnDot: TButton
  171.     Left = 149
  172.     Top = 169
  173.     Width = 60
  174.     Height = 33
  175.     Caption = '.'
  176.     TabOrder = 16
  177.     OnClick = BtnDotClick
  178.   end
  179.   object ClearBtn: TButton
  180.     Left = 8
  181.     Top = 208
  182.     Width = 65
  183.     Height = 33
  184.     Caption = '&Clear'
  185.     TabOrder = 17
  186.     OnClick = ClearBtnClick
  187.   end
  188.   object CalcList: TListBox
  189.     Left = 218
  190.     Top = 38
  191.     Width = 199
  192.     Height = 194
  193.     ItemHeight = 16
  194.     TabOrder = 18
  195.   end
  196.   object MainMenu1: TMainMenu
  197.     Left = 48
  198.     Top = 264
  199.     object FileMenu: TMenuItem
  200.       Caption = '&File'
  201.       object ClearMenuItem: TMenuItem
  202.         Caption = '&Clear'
  203.         OnClick = ClearMenuItemClick
  204.       end
  205.       object SaveMenuItem: TMenuItem
  206.         Caption = '&Save'
  207.         OnClick = SaveMenuItemClick
  208.       end
  209.     end
  210.   end
  211. end
  212.